home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Especial Multimedia
/
Especial Multimedia.iso
/
Multimed
/
Presenta
/
EV2FREE.ZIP
/
EFREE3.ICZ
/
ICFILES.FRM
< prev
next >
Wrap
Text File
|
1995-06-14
|
7KB
|
261 lines
VERSION 2.00
Begin Form icfiles
Caption = "icfiles"
ClientHeight = 5148
ClientLeft = 1452
ClientTop = 1536
ClientWidth = 4332
Height = 5568
Left = 1404
LinkMode = 1 'Source
LinkTopic = "Ext"
ScaleHeight = 5148
ScaleWidth = 4332
Top = 1164
Width = 4428
Begin FileListBox File1
Enabled = 0 'False
Height = 984
Index = 0
Left = 240
TabIndex = 7
Top = 3120
Visible = 0 'False
Width = 2172
End
Begin DriveListBox Drive1
Enabled = 0 'False
Height = 288
Index = 0
Left = 240
TabIndex = 6
Top = 1560
Visible = 0 'False
Width = 2172
End
Begin TextBox Events
Height = 372
Left = 2760
TabIndex = 3
Top = 4440
Width = 972
End
Begin PictureBox pic1
Height = 288
Left = 960
Picture = ICFILES.FRX:0000
ScaleHeight = 264
ScaleWidth = 264
TabIndex = 2
Top = 4440
Width = 288
End
Begin DirListBox Dir1
Enabled = 0 'False
Height = 672
Index = 0
Left = 240
TabIndex = 1
Top = 2160
Visible = 0 'False
Width = 2172
End
Begin TextBox Data
Height = 372
Left = 1560
TabIndex = 0
Top = 4440
Width = 972
End
Begin Image Image1
Height = 384
Index = 2
Left = 2640
Picture = ICFILES.FRX:0302
Top = 3120
Width = 384
End
Begin Image Image1
Height = 384
Index = 1
Left = 2640
Picture = ICFILES.FRX:0604
Top = 2160
Width = 384
End
Begin Image Image1
Height = 384
Index = 0
Left = 2640
Picture = ICFILES.FRX:0906
Top = 1440
Width = 384
End
Begin Label Label2
BorderStyle = 1 'Fixed Single
Caption = "Label2"
Height = 372
Left = 0
TabIndex = 5
Top = 720
Width = 3492
End
Begin Label Label1
BorderStyle = 1 'Fixed Single
Caption = "Label1"
Height = 372
Left = 0
TabIndex = 4
Top = 120
Width = 3492
End
End
Declare Function SetParent% Lib "User" (ByVal hWndChild As Integer, ByVal hWndNewParent As Integer)
Sub Dir1_Change (Index As Integer)
Call sendevent("He", 1, Index, xtra$)
End Sub
Sub Dir1_Click (Index As Integer)
Call sendevent("Ce", 1, Index, xtra$)
End Sub
Sub Dir1_DragDrop (Index As Integer, Source As Control, X As Single, Y As Single)
xtra$ = CStr(X) + "," + CStr(Y)
Call sendevent("Dd", 1, Index, xtra$)
End Sub
Sub Dir1_GotFocus (Index As Integer)
Call sendevent("Gf", 1, Index, xtra$)
End Sub
Sub Dir1_LostFocus (Index As Integer)
Call sendevent("Lf", 1, Index, xtra$)
End Sub
Sub Dir1_MouseDown (Index As Integer, button As Integer, shift As Integer, X As Single, Y As Single)
xtra$ = Chr$(button + 8) + Chr$(shift + 8) + Chr$(1) + CStr(X) + "," + CStr(Y)
Call sendevent("Md", 1, Index, xtra$)
End Sub
Sub Dir1_MouseMove (Index As Integer, button As Integer, shift As Integer, X As Single, Y As Single)
Static previous$
If button <> 0 Or InStr(oats$(1), "Me") <> 0 Then
xtra$ = Chr$(button + 8) + Chr$(shift + 8) + Chr$(1) + CStr(X) + "," + CStr(Y)
If xtra$ <> previous$ Then
Call sendevent("Mm", 1, Index, xtra$)
previous$ = xtra$
End If
End If
End Sub
Sub Dir1_MouseUp (Index As Integer, button As Integer, shift As Integer, X As Single, Y As Single)
xtra$ = Chr$(button + 8) + Chr$(shift + 8) + Chr$(1) + CStr(X) + "," + CStr(Y)
Call sendevent("Mu", 1, Index, xtra$)
End Sub
Sub Drive1_Change (Index As Integer)
Call sendevent("He", 0, Index, xtra$)
End Sub
Sub Drive1_DragDrop (Index As Integer, Source As Control, X As Single, Y As Single)
xtra$ = CStr(X) + "," + CStr(Y)
Call sendevent("Dd", 0, Index, xtra$)
End Sub
Sub Drive1_GotFocus (Index As Integer)
Call sendevent("Gf", 0, Index, xtra$)
End Sub
Sub Drive1_LostFocus (Index As Integer)
Call sendevent("Lf", 0, Index, xtra$)
End Sub
Sub File1_Click (Index As Integer)
Call sendevent("Ce", 2, Index, xtra$)
End Sub
Sub File1_DblClick (Index As Integer)
Call sendevent("Dc", 2, Index, xtra$)
End Sub
Sub File1_DragDrop (Index As Integer, Source As Control, X As Single, Y As Single)
xtra$ = CStr(X) + "," + CStr(Y)
Call sendevent("Dd", 2, Index, xtra$)
End Sub
Sub File1_GotFocus (Index As Integer)
Call sendevent("Gf", 2, Index, xtra$)
End Sub
Sub File1_LostFocus (Index As Integer)
Call sendevent("Lf", 2, Index, xtra$)
End Sub
Sub File1_MouseDown (Index As Integer, button As Integer, shift As Integer, X As Single, Y As Single)
xtra$ = Chr$(button + 8) + Chr$(shift + 8) + Chr$(1) + CStr(X) + "," + CStr(Y)
Call sendevent("Md", 2, Index, xtra$)
End Sub
Sub File1_MouseMove (Index As Integer, button As Integer, shift As Integer, X As Single, Y As Single)
Static previous$
If button <> 0 Or InStr(oats$(2), "Me") <> 0 Then
xtra$ = Chr$(button + 8) + Chr$(shift + 8) + Chr$(1) + CStr(X) + "," + CStr(Y)
If xtra$ <> previous$ Then
Call sendevent("Mm", 2, Index, xtra$)
previous$ = xtra$
End If
End If
End Sub
Sub File1_MouseUp (Index As Integer, button As Integer, shift As Integer, X As Single, Y As Single)
xtra$ = Chr$(button + 8) + Chr$(shift + 8) + Chr$(1) + CStr(X) + "," + CStr(Y)
Call sendevent("Mu", 2, Index, xtra$)
End Sub
Sub Form_Activate ()
Me.Visible = 0
End Sub
Sub Form_LinkExecute (cmdstr As String, cancel As Integer)
em$ = cmdstr
Call extmgrx(1, em$)
cancel = 0
End Sub
Sub Form_Load ()
If App.PrevInstance Then End
t242.chr242 = Chr$(242)
tcvi.chr242 = Chr$(242)
t243.chr243 = Chr$(243)
t244.chr244 = Chr$(244)
t245.chr245 = Chr$(245)
t246.chr246 = Chr$(246)
ReDim tags(39, 0)
Me.Visible = 0
Call init
End Sub